home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / mount.preinst < prev    next >
Text File  |  2009-10-22  |  500b  |  33 lines

  1. #!/bin/sh -e
  2.  
  3. # Debian mount preinst
  4. # LaMont Jones <lamont@debian.org>
  5.  
  6. chrooted() {
  7.   if [ "$(stat -c %d/%i /)" = "$(stat -Lc %d/%i /proc/1/root 2>/dev/null)" ]; then
  8.       # the devicenumber/inode pair of / is the same as that of /sbin/init's
  9.       # root, so we're *not* in a chroot and hence return false.
  10.       return 1
  11.   fi
  12.   return 0
  13. }
  14.  
  15. case "$1" in
  16.     install)
  17.     ;;
  18.  
  19.     upgrade)
  20.     ;;
  21.  
  22.     abort-upgrade)
  23.     ;;
  24.  
  25.     *)
  26.     echo "preinst called with unknown argument \`$1'" >&2
  27.     exit 1
  28.     ;;
  29. esac
  30.  
  31.  
  32.  
  33.